home *** CD-ROM | disk | FTP | other *** search
/ Aminet 32 / Aminet 32 (1999)(Schatztruhe)[!][Aug 1999].iso / Aminet / game / think / MUIMineSrc.lha / MUIMineSource / Digits.h < prev    next >
C/C++ Source or Header  |  1998-11-20  |  1KB  |  47 lines

  1. #ifndef  __DIGITS_H_
  2. #define  __DIGITS_H_
  3. /*
  4.     header file for X-Mines 3 digit display MUI custom class
  5. */
  6.  
  7.  
  8. /********************************************************************
  9.  
  10.     class attributes
  11.  
  12. ********************************************************************/
  13.  
  14. /*
  15.     this attributes is set at initialization only
  16. */
  17. #define MUIA_Digits_ImageFile   (DIGITS_TAG_BASE | 0x0001)
  18.  
  19. /*
  20.     this attribute is setable only, it is the number the counter displays
  21. */
  22. #define MUIA_Digits_Number      (DIGITS_TAG_BASE | 0x0002)
  23.  
  24. #define MUIV_Digits_Number_Blanked    ((int)0x7FFF)
  25. #define MUIV_Digits_Number_Dashed     ((int)0x7FFE)
  26.  
  27.  
  28. /********************************************************************
  29.  
  30.     class methods
  31.  
  32. ********************************************************************/
  33.  
  34.  
  35.  
  36. /********************************************************************
  37.  
  38.     function prototypes
  39.  
  40. ********************************************************************/
  41.  
  42. struct MUI_CustomClass * CreateDigitsClass(void);
  43. void DeleteDigitsClass(struct MUI_CustomClass * mcc);
  44.  
  45.  
  46. #endif /* __DIGITS_H_ */
  47.